home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Languages / RLaB 1.18c / WHATS.NEW < prev   
Text File  |  1995-02-19  |  20KB  |  670 lines

  1.  
  2. ***    What's New in Version v1.18 ?
  3.  
  4.     1.) Strsplt now takes a second, optional, argument that denotes
  5.     the field width to split on.
  6.  
  7.     2.) isinf, isnan, finite, cumsum, cumprod are all builtin
  8.     functions now. This has the potential to substantially speed
  9.     up scripts that use these functions.
  10.  
  11.     3.) quadr.r, corr.r, spectrogram.r, autospec.r, isreal.r,
  12.     nextpow2.r 
  13.  
  14.     4.) Bug fixes...
  15.  
  16.     5.) Some of the help files, like `IF', have been renamed to
  17.     `if'. This should make it easier on newcomers who are inclined
  18.     to type `help if'.
  19.  
  20.     6.) updated gnuplot support. Thanks to Karl Storck.
  21.  
  22. ***    What's New in Version v1.17 ?
  23.  
  24.     1.) Added Inf capability to 2nd arg of norm (see help, obscure
  25.     feature). 
  26.  
  27.     2.) hilbert.r: Hilbert transform, new file.
  28.  
  29.     3.) Some other obscure features/changes in various plotting
  30.     and numerical functions in order to make the testmatrix
  31.     toolbox an easier port.
  32.  
  33.     4.) Added frexp(), logb(), and log2().
  34.  
  35.     5.) Added second (optional) argument to getline to allow users
  36.     to read in entire line as a string.
  37.  
  38.     6.) Now you can do: 
  39.  
  40.         </ v ; d /> = eig (a);
  41.  
  42.     This is be-grudgingly supplied to help Matlab users
  43.     transition, and cut down on copies in functions.
  44.  
  45.     The thing on the left hand side is called an "open-list". See
  46.     `help LIST'
  47.  
  48. ***    What's New in Version v1.15 ? (I think this should be 1.16)
  49.  
  50.     1.) Some effort has been expended to re-work some of the guts
  51.     in an attempt to safely speed interpreter execution.
  52.     Additionally work has been done to clean up the parser
  53.     generated op-codes, and simplify the functions (operations) in
  54.     the virtual machine.
  55.  
  56.     Specifically: Re-work conditional interpretation.
  57.               Speed up temporary entity handling.
  58.  
  59.     Due to the nature of the beast (RLaB), execution times will
  60.     not change uniformly, some operations should be faster, some
  61.     might not change much.  But, on the whole, the trend should be
  62.     faster execution (anywhere from 0-50% on my machine).
  63.  
  64.     2.) Converted over to autoconf-v2.x. This should not mean
  65.     anything to users, configure is still run in basically the
  66.     same way.
  67.  
  68.     3.) Implementation of standardized floating-point exception
  69.     handling. Now rlab should ignore all floating point
  70.     exceptions, except overflow. This works on SVr3.2 and SVR4.x,
  71.     Suns, HPs, and Linux. If this gives you problems during build,
  72.     then see the PROBLEMS file (run configure with
  73.     `--disable-fpe').
  74.  
  75.     4.) A more accurate tic() and toc() using your system's
  76.     times(2) function (if it exists). If your system does not have
  77.     a times(2), then the older/less-precise tic() and toc() are
  78.     used. Users should note that using tic() and toc(), in either
  79.     implementation, is probably not valid for timing tests unless
  80.     the test take at least a few seconds (> 10 is best).
  81.  
  82.     5.) The scanner can now deal with Matlab style comments `%'.
  83.  
  84.     6.) The rfile command is now more useful. Rfile handles
  85.     multiple names and trailing comments.
  86.  
  87.     7.) More improvements in the autoconfiguration.
  88.  
  89.     8.) There is a new command, called `require' (see `help
  90.     require'). This command is like rfile, except that it won't
  91.     re-read files when the function already exists in the
  92.     workspace. 
  93.  
  94. ***    What's New in Version v1.13b ?
  95.  
  96.     1.) There has been an internal overhaul of builtin function
  97.     argument handling. No new features, just easier for people to
  98.     write dynamically linked builtin functions (rex-files) once
  99.     the documentation is done.
  100.  
  101.     2.) fvscope now annotates non-function, global variables with
  102.     an asterisk (`*').
  103.  
  104.     3.) New rfiles, section.r, show_prop.r.
  105.  
  106.     4.) Added plsfile to allow users to specify Plplot output
  107.     file. 
  108.  
  109.     5.) I have been working on configure again (a never ending
  110.     process). Now using dynamic-linking is standard for SVr4 and
  111.     Solaris. configure will look for plplot in /usr/local/plplot
  112.     and /usr/local/... if nothing is specified.
  113.  
  114.     6.) OVERHAUL FUNCTION SCOPING RULES. See `help FUNCTION',
  115.     `help global', `help local', and `help static'.
  116.  
  117.     7.) Functions can now use the variable `nargs' which is
  118.     automatically initialized to the number of arguments passed to
  119.     the function. see `help FUNCTION'.
  120.  
  121.     8.) det() now returns zero after issuing a warning when given
  122.     a singular matrix as an argument.
  123.  
  124.     9.) ode() can now take an optional last argument that is a
  125.     function to process the output. See `help ode'.
  126.  
  127.     10.) The Primer has been updated to reflect new scoping rules.
  128.  
  129.     11.) New gnuplot.r from Karl Storck.
  130.  
  131. ***    What's New in Version v1.09i ?
  132.  
  133.     1.) Mostly a portability release. Binary I/O has been improved
  134.     so it should work better on "non-standard" platforms
  135.     (DEC-alpha). Some clean ups have been done to make RLaB build
  136.     easier on HP-UX.
  137.  
  138.     2.) `make install' has been overhauled to use version numbers
  139.     on the executable, and the lib directory. The new install
  140.     procedure will also try and move the old stuff out of the
  141.     way. Nothing is removed, except the old executable. As always
  142.     `make -n install' is highly recommended.
  143.  
  144.     3.) Bug fixes to plhist, plhistx plotting. Addition of
  145.     subplot() function.
  146.  
  147.     4.) New builtin, putenv.
  148.  
  149.     5.) New argument for plot, see `help plot'. Also some 
  150.     general bug fixes in the plotting routines.
  151.  
  152.     6.) Add symmetric/Hermitian factorizations to `\', solve,
  153.     factor, backsub. factor and solve now have an optional
  154.     argument to allow the user to overide symmetry check.
  155.  
  156.     7.) Bug fix in eval() string argument check.
  157.  
  158. ***    What's New in Version v1.09 ?
  159.  
  160.     1.) Dynamic linking is functional for SVr4.0, SunOS-4.x,
  161.     SunOS-5.x. However, there is no documentation at this
  162.     point... Next release.
  163.  
  164. ***    What's New in Version v1.07 ?
  165.  
  166.     1.) Not much except for some bug fixes (plugged a memory
  167.     leak). Mostly there has been some re-organisation of the file
  168.     and function structure in an attempt to make dynamic linking
  169.     possible. Before we go any further though, a significant
  170.     amount of testing should be done.
  171.     
  172. ***    What's New in Version v1.05 ?
  173.  
  174.     1.) fread(), fseek(), if you are a C programmer you know what
  175.     these are. The args are a little different.
  176.  
  177.     2.) eval is now a built-in. Also eval returns the result of
  178.     the last statement, and can be used in function with local
  179.     variables. The best part is that eval no longer used temporary
  180.     files to do its job.
  181.  
  182.     3.) sign() is builtin.
  183.  
  184. ***    What's New in Version v1.02 ?
  185.  
  186.     1.) readm() is MUCH faster.
  187.  
  188.     2.) Revised toeplitz
  189.  
  190.     3.) Added tmpfile() (builtin).
  191.  
  192.     4.) Improved contour plotting so that only visible contours
  193.     are displayed in legend.
  194.  
  195.     5.) Improvements to `make Test' - much less use of rand().
  196.  
  197. ***    What's New in Version v1.0 ?
  198.  
  199.     1.) New functions (rfiles) bessely, besselj.
  200.  
  201.     2.) local() modified so that arguments are copied.
  202.     See `help FUNCTION'
  203.  
  204.     3.) Numerically singlular inputs to solve(), \ are now handled
  205.     with warnings and in a more uniform fashion.
  206.  
  207.     4.) ./misc/rlab-mode.el
  208.     I am NOT an Emacs-lisp programmer. This is hacked from
  209.     tcl-mode.el. if anyone can improve it - go for it.
  210.  
  211.     5.) Added plcont() - contour plotting.
  212.  
  213.     6.) The primer has been updated to match version 1.
  214.  
  215. ***    What's New in Version 0.99i ?
  216.  
  217.     1.) Added plhold(), plhold_off, and plegend().
  218.  
  219.     2.) New rfiles roots() and poly(), join() from T. S. Yang.
  220.  
  221.     3.) A more recent version of fftpack. Sorry, but the accuracy
  222.     is much better with the new version (rfft-1.2.tar.gz) -
  223.     precision demands it.
  224.  
  225.     4.) examples/plhold_demo.r is new.
  226.  
  227.     5.) The plot help has been split up into separate files.
  228.  
  229. ***    What's New in Version 0.99f ?
  230.  
  231.     1.) Added plmesh().
  232.  
  233.     2.) Added examples/curve_fit.r    
  234.  
  235.     3.) min(), max() now accept two numeric args.
  236.  
  237. ***    What's New in Version 0.99e ?
  238.  
  239.     1.) Bug fixes.
  240.  
  241.     2.) rfile will check the value of _rlab_search_path during
  242.     execution.
  243.  
  244. ***    What's New in Version 0.99d ?
  245.  
  246.     1.) Bug fixes.
  247.  
  248.     2.) ode() argument list is now consistent with ode4() and
  249.     ode78(). 
  250.  
  251.     3.) Added open() and getb().
  252.  
  253. ***    What's New in Version 0.99 BETA ?
  254.  
  255.     1.) New rfiles: mdsmax.r, and nmsmax.r. Both perform
  256.     unconstrained optimization.
  257.  
  258.     2.) Fixed non-Matlab-like behavior in acos(), and asin().
  259.  
  260.     3.) getline() returns a NULL string when a blank line is
  261.     encountered.
  262.  
  263.     4.) Added writeb() and readb(). Read and write binary files.
  264.     MATLAB compatibility (see `help readb', `help writeb').
  265.  
  266.     5.) Added ode(). Ordinary differential equation integrator
  267.     (netlib). 
  268.  
  269.     6.) Fixed readm() so it will read from pipes.
  270.  
  271.     7.) Added getenv() built-in function.
  272.  
  273.     8.) Plotting enhancements... plfont(), pltex(), plsori(),
  274.     plwid(), plaxis().
  275.  
  276.     9.) filter() is now a builtin, compatible with MATLAB's
  277.     implementation. 
  278.  
  279.     10.) Enhancements to matrix element-by-element operators, see
  280.     `help OPERATORS'. Added `.+' and `.-'
  281.  
  282. ***    What's New in Version 0.97 BETA ?
  283.  
  284.     1.) More plplot improvements. Updated primer to reflect plplot
  285.     usage. 
  286.  
  287.     2.) Some non-Unix portability enhancements.
  288.  
  289.     3.) Equality (== and !=) tests are allowed between numbers and
  290.     strings. 
  291.  
  292.     4.) New builtin function schord(). See `help schord'.
  293.  
  294. ***    What's New in Version 0.96 BETA ?
  295.  
  296.     1.) mod & atan2 functions now take various combinations of
  297.     matrices.
  298.  
  299.     2.) read() now taks optional 2nd argument (see `help read').
  300.  
  301.     3.) New fix(), and fixed up czt().
  302.  
  303.     4.) The configure script has been improved to take more
  304.     options (see INSTALL).
  305.  
  306.     5.) Changed eig (slightly), and added eigs (symmetric), eign
  307.     (non-symmetric). Non-symmetric generalized eign() returns
  308.     left-eigenvectors now.
  309.  
  310.     6.) Added strtod().
  311.  
  312.     7.) Added PLPLOT built-in plotting capability. You must have
  313.     the double precision version of the plplot library for it to
  314.     work. See `help plplot' and `examples/plot_test.r'.
  315.  
  316.     8.) Added sizeof() (see 'help sizeof') and re-worked whos().
  317.  
  318. ***    What's New in Version 0.9(3-5) BETA ?
  319.  
  320.     1.) New functions: complement(), intersection(), set(),
  321.     union(), faxis(), fftplot(), window(), fmin(), dot().
  322.  
  323.     2.) readm(), and writem() have been modified so that the row
  324.     and column values at the top of the file are no longer needed.
  325.     This means old files written with writem() will have to have
  326.     the first line filtered out. It also means that readm() should
  327.     be able to directly read "flat-files" written by other
  328.     programs. 
  329.  
  330.     3.) New & Improved qr(). New option qr(a,"p") for column
  331.     pivoting. And qr() now works on MxN where M < N as well as 
  332.     M >= N.
  333.  
  334.     4.) Function argument handling has been improved.
  335.         my_func ( , , A )
  336.     is now possible.
  337.  
  338.     5.) Many bug fixes.
  339.  
  340.     6.) fft(), and ifft() now work like MATLAB's
  341.  
  342.     7.) name() is gone (it wasn't of any use anymore anyway).
  343.  
  344.     8.) Added lyap() (user-function), and sylv() (builtin-function).
  345.  
  346.     9.) RLaB uses autoconf now.
  347.  
  348.     10.) Added issymm(), see `help issymm'.
  349.  
  350.     11.) Writem no longer closes the file after each call.
  351.  
  352.     12.) New and improved eig, see `help eig'.
  353.  
  354.     13.) Improved command line options. Added `-V' (version #),
  355.     `-m' (no message on startup), and a usage message if an
  356.     incorrect option is used.
  357.  
  358.     14.) Added czt() - Chirp z-transform.
  359.  
  360. ***    What's New in Version 0.92 BETA ?
  361.  
  362.     1.) New functions: input, num2str, funm, logm, disp, input,
  363.     mret finite, printmat, int2str, filter, and isempty.
  364.  
  365.     2.) A new builtin function called fvscope() (Function
  366.     Variable SCOPE). Fvscope identifies the variables used in a
  367.     function, and what their scope is. This is very useful for
  368.     writing general purpose library functions.
  369.  
  370.     3.) Bug fixes to the error recovery.
  371.  
  372. ***    What's New in Version 0.91 BETA ?
  373.  
  374.     1.) RLaB can now load() files while executing code, such as in
  375.     for, or while loops, or within functions. This makes a simple
  376.     eval function possible. See `help load', `help eval', 
  377.     `help BUGS'.
  378.     
  379.     2.) Added expm() rfile.
  380.  
  381. ***    What's New in Version 0.86 BETA ?
  382.  
  383.     1.) Bug fixes.
  384.  
  385. ***    What's New in Version 0.85 BETA ?
  386.  
  387.     1.) Enhanced svd(), See `help svd'.
  388.  
  389.     2.) Bug fixes.
  390.  
  391. ***    What's New in Version 0.84 BETA ?
  392.  
  393.     1.) Added schur()
  394.  
  395.     2.) Bug fixes.
  396.  
  397. ***    What's New in Version 0.83 BETA ?
  398.  
  399.     1.) The usual bug fixes.
  400.  
  401.     2.) Added doc/tutorial.3.tex (List Tutorial).
  402.  
  403. ***    What's New in Version 0.82 BETA ?
  404.  
  405.           1.) My apologies again, but I have restructured the class,
  406.               type hierarchy in rlab. This was necessary for several
  407.               reasons. The new hierarchy is only slightly different, and
  408.               is described in the help files: class, type, and show. The
  409.               new hierarchy looks like: (from the help file "type")
  410.  
  411.             CLASS:    num
  412.             TYPES:    real      complex
  413.  
  414.             CLASS:    string
  415.               TYPES:    string
  416.  
  417.             CLASS:    list
  418.             TYPES:    (see note 1.)
  419.  
  420.             CLASS:    function
  421.             TYPES:    user      builtin
  422.  
  423.           2.) Improved type().
  424.  
  425.           3.) Improved test-suite.
  426.  
  427.           4.) Improvements in the makefile install target.
  428.  
  429.           5.) Rlab now has a command line editing option that is much
  430.           smaller than GNU readline. Courtesy of Chris Thewalt.
  431.  
  432.         See `help COMMAND_EDIT' 
  433.  
  434.     6.) The contrib directory has been removed. Most of the
  435.     contrib directories contents have been moved to the toolbox
  436.     directory. I did this because I have been forgetting to keep
  437.     the contrib directories files current with rlab. Also, the
  438.     original intention was to keep unaltered, contributed rfiles
  439.     there. Since I have had to modify the contents of contrib to
  440.     keep up with the changes in rlab, the contrib directory no
  441.     longer seemed appropriate. Maybe when rlab gets to v1.0.
  442.  
  443.     7.) Small modifications to existing ODE integration functions.
  444.  
  445.     8.) Added setterm(), showplot, phrd() to plot functionality.
  446.  
  447. ***    What's New in Version 0.78 BETA ?
  448.  
  449.     1.) Added file static() declaration.
  450.  
  451.     2.) Added exist() built-in function.
  452.  
  453.     3.) diag(), ones() are builtin.
  454.  
  455.     4.) Added whos().
  456.  
  457.     5.) Improved plot(), added pclose().
  458.  
  459.     6.) Added factor(), backsub(). lu() is now a user-function.
  460.  
  461.           7.) My apologies, but I found the "dummy" name scheme for
  462.               determining the status of a function argument to be
  463.               totally inappropriate for nested function calls.
  464.               Therefore, I have changed rlab behavior so that functions
  465.               that are called with fewer args than declared are supplied
  466.               UNDEFINED arguments to fill out the argument list. To test
  467.               the status of an argument do:
  468.  
  469.               if (!exist (ARG))
  470.               {
  471.                 // initialize the ARG, error(), whatever...
  472.               }
  473.  
  474.           8.) Added qq_normal(), fliplr(), flipud() to ./toolbox
  475.  
  476. ***    What's New in Version 0.75 BETA ?
  477.  
  478.     1.) Fixed cumsum(), and cumprod() (much more efficient).
  479.         New rfiles save.r, clearall.r.
  480.  
  481.     2.) Finished 1st draft of function tutorial.
  482.  
  483.     3.) Improved getline().
  484.  
  485.     4.) Removed need to terminate function declaration with `;' or
  486.         `\n'. 
  487.  
  488.     5.) The usual bug fixes, documentation improvements, etc...
  489.  
  490. ***    What's New in Version 0.73 BETA ?
  491.  
  492.     1.) length() more compatible with the other length().
  493.  
  494.     2.) $$ can be used as global symbol table constant.
  495.  
  496. ***    What's New in Version 0.71 BETA ?
  497.  
  498.     1.) cd(). New function. Changes current working directory.
  499.  
  500.     2.) redit.r: For editing rfiles.
  501.  
  502.     3.) Addition to config.h (HAVE_INDEX).
  503.  
  504. ***    What's New in Version 0.70 BETA ?
  505.  
  506.     1.) Faster matrix multiplication functions ( ~ 20% ).
  507.     
  508.     2.) sum(), and prod(), are builtin (faster). cumsum(), and
  509.         cumprod() will be builtin shortly (rfiles for now.
  510.  
  511.     3.) Better signal handling.
  512.  
  513.     4.) Some interpreter speedups.
  514.  
  515.     5.) Matrix powers finally work.
  516.  
  517.     6.) Some type-checking/handling consistency improvements.
  518.  
  519.     7.) The example plot() function is simpler now.
  520.  
  521.     8.) Empty matrix syntax added ( `[]' ).
  522.  
  523.     9.) fft(), ifft() now work on MxN matrices. max(), and min()
  524.         any(), all(), sort(), work more like MATLAB versions.
  525.  
  526.     10.) Many, many  bugs fixed.
  527.  
  528.     11.) `[ : ]' operation added. Forces Nx1 orientation of matrix.
  529.  
  530.     12.) Complex atan, acos, asin, tan now work.
  531.  
  532.     13.) A stop-gap matrix-tutorial in ./doc, updated man-page.
  533.  
  534.     14.) .' non-conjugate transpose.
  535.  
  536.     15.) getline() returns an empty list when nothing is read. See
  537.         `help getline'.
  538.  
  539.     16.) length(): New function.
  540.  
  541.     17.) `#!' can be used in rlab scripts.
  542.  
  543. ***    What's New in Version 0.52 ALPHA ?
  544.  
  545.     1.) Bug fixes.
  546.  
  547.     2.) Now sort() returns a list of the sorted values, and the
  548.     sorted indices. 
  549.  
  550.     3.) maxi()/mini() now return a scalar index value. This value
  551.     can be used directly to index another matrix.
  552.  
  553. ***    What's New in Version 0.51 ALPHA ?
  554.  
  555.     1.) The help and rfile commands are more versatile. For
  556.     example: `help help' will work now.
  557.  
  558.     2.) Vector creation (d1:d2:d3) rules make more sense (see
  559.     `help VECTOR').
  560.  
  561.     3.) A\B, and C/D now use a more efficient algorithm when A or
  562.     C is square.
  563.  
  564.     4.) There is a brief man-page.
  565.  
  566.     5.) Some bug fixes in max(), min(), and mod().
  567.  
  568.     6.) A directory of test-matrix functions has been added under
  569.     the examples directory. 
  570.  
  571. ***    What's New in Version 0.50 ALPHA ?
  572.  
  573.     1.) The find function is now a builtin (much faster).
  574.  
  575.     2.) The if-statement syntax has changed slightly. Used to be: 
  576.  
  577.         if ( expression ) {
  578.           statement(s)
  579.         } else { // The braces and the else must be on the same line
  580.           statement(s)
  581.         }
  582.  
  583.     Now the correct syntax is:
  584.  
  585.         if ( expression )
  586.         {
  587.           statement(s)
  588.         else
  589.           statement(s)
  590.         }
  591.  
  592. ***    What's New in Version 0.32 ALPHA ?
  593.  
  594.     1.) Added `rfile' command. `file name' now loads the file
  595.     named `name.r' if it can be located in your RLAB_SEARCH_PATH.
  596.     The simple command `rfile' prints a list of all the rfiles
  597.     that appear in RLAB_SEARCH_PATH.
  598.  
  599.     2.) Changed `help' command to be consistent with `rfile'
  600.     command. The simple command `help' prints a list of: the help
  601.     files in the default help directory, and the rfiles in
  602.     RLAB_SEARCH_PATH. `help name' prints the content of the file
  603.     `name' to the standard output. If the file does not exist in
  604.     the default help directory, RLAB_SEARCH_PATH is searched.
  605.  
  606.     3.) The `rlib' directory contents are now loaded upon startup,
  607.     instead of having a HUGE `.rlab' file. Added RLAB_LIB_DIR for
  608.     post-compile specification of library directory.
  609.  
  610.     4.) All matrix output is paged. The pager is specified in the
  611.     config.h file.
  612.  
  613.     5.) Added getline() function. Works sort-of-like the awk
  614.     getline. `x = getline("filename")' gets a line-at-time, and
  615.     splits it into fields. Each field is a member of a list. Thus,
  616.     x.[1] ... x.[N] contain the all the information from the line.
  617.  
  618.     6.) Added strsplt(). Splits a string into a matrix of single
  619.     characters.
  620.  
  621. ***    What's New in Version 0.30 ALPHA ?
  622.  
  623.     Version 0.3x is the last of the ALPHA test releases. Notice I
  624.     did not say 0.30, since I do expect to release bug-fixes to
  625.     v0.30. The major obstacle to starting beta test is a better
  626.     online help, and a good printed manual. Other than bug-fixes
  627.     these two goals will be my major priority.    
  628.  
  629.     1.) RLaB-0.30 is more MATLAB-like.
  630.  
  631.     2.) Vectors have been remove as a distinct type. However, all
  632.     of the usefulness of vectors is still accessible via single
  633.     indexed matrices. 
  634.  
  635.     Side effects: 
  636.  
  637.     This means that the append operator, `,', does not function
  638.     outside the [ ]. Instead, the comma (outside []) serves in a
  639.     more traditional sense, as an argument list separator.
  640.  
  641.     Some of the built-in functions arguments are different. For
  642.     example, zeros used to take a 2-element vector as an arg. Now
  643.     zeros will accept two scalars, or a 2-element matrix.
  644.  
  645.     3.) RLaB has adopted the MATLAB operator syntax.
  646.  
  647.     + - * /    \ ^    Work in the traditional LA sense.
  648.        .* ./ .\ .^    Work in the element-by-element sense.
  649.  
  650.     Note that `2./A' is the same as `2 ./ A'
  651.     Also note that `^' is not fully implemented yet.
  652.  
  653.     4.) The printed documentation has been removed. Two of the
  654.     alpha testers have volunteered to overhaul the printed docs in
  655.     latex or latexinfo. 
  656.  
  657.     5.) Some changes in the numeric output format, and the
  658.     format() built-in function. See `help format'.
  659.  
  660.     6.) RLaB will use matherr() instead of errno, If your machine
  661.     supports it (and you select it in config.h). This option
  662.     should prove much faster than checking errno after every math
  663.     library function call.
  664.  
  665.     7.) New built-in functions: inf(), nan(), round().
  666.  
  667.     8.) Matrix 2-norm has been added to norm(); `norm( m, "2" )'.
  668.  
  669.     9.) "clock" option added to srand(); sets seed via the machine clock.
  670.